Contents | Index | < Browse | Browse >

LETTERisalphaULETTER Tests for alphabetic characters.

Overview
#include <ctype.h>

b = isalpha(ch);

int ch;

Portability
ANSI

Description
This function tests if the passed character is a letter. For portability reasons only ASCII characters work, that is, eg. the german Umlauts (äöüß) are not accepted.

Returns
0 if the character is no letter, otherwise a value <>0.

See also